home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / tcp_timer.h,v < prev    next >
Text File  |  1988-06-29  |  5KB  |  152 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.36;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.32;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)tcp_timer.h    7.5 (Berkeley) 3/16/88
  40.  */
  41.  
  42. #ifndef _TCP_TIMER
  43. #define _TCP_TIMER
  44.  
  45. /*
  46.  * Definitions of the TCP timers.  These timers are counted
  47.  * down PR_SLOWHZ times a second.
  48.  */
  49. #define    TCPT_NTIMERS    4
  50.  
  51. #define    TCPT_REXMT    0        /* retransmit */
  52. #define    TCPT_PERSIST    1        /* retransmit persistance */
  53. #define    TCPT_KEEP    2        /* keep alive */
  54. #define    TCPT_2MSL    3        /* 2*msl quiet time timer */
  55.  
  56. /*
  57.  * The TCPT_REXMT timer is used to force retransmissions.
  58.  * The TCP has the TCPT_REXMT timer set whenever segments
  59.  * have been sent for which ACKs are expected but not yet
  60.  * received.  If an ACK is received which advances tp->snd_una,
  61.  * then the retransmit timer is cleared (if there are no more
  62.  * outstanding segments) or reset to the base value (if there
  63.  * are more ACKs expected).  Whenever the retransmit timer goes off,
  64.  * we retransmit one unacknowledged segment, and do a backoff
  65.  * on the retransmit timer.
  66.  *
  67.  * The TCPT_PERSIST timer is used to keep window size information
  68.  * flowing even if the window goes shut.  If all previous transmissions
  69.  * have been acknowledged (so that there are no retransmissions in progress),
  70.  * and the window is too small to bother sending anything, then we start
  71.  * the TCPT_PERSIST timer.  When it expires, if the window is nonzero,
  72.  * we go to transmit state.  Otherwise, at intervals send a single byte
  73.  * into the peer's window to force him to update our window information.
  74.  * We do this at most as often as TCPT_PERSMIN time intervals,
  75.  * but no more frequently than the current estimate of round-trip
  76.  * packet time.  The TCPT_PERSIST timer is cleared whenever we receive
  77.  * a window update from the peer.
  78.  *
  79.  * The TCPT_KEEP timer is used to keep connections alive.  If an
  80.  * connection is idle (no segments received) for TCPTV_KEEP_INIT amount of time,
  81.  * but not yet established, then we drop the connection.  Once the connection
  82.  * is established, if the connection is idle for TCPTV_KEEP_IDLE time
  83.  * (and keepalives have been enabled on the socket), we begin to probe
  84.  * the connection.  We force the peer to send us a segment by sending:
  85.  *    <SEQ=SND.UNA-1><ACK=RCV.NXT><CTL=ACK>
  86.  * This segment is (deliberately) outside the window, and should elicit
  87.  * an ack segment in response from the peer.  If, despite the TCPT_KEEP
  88.  * initiated segments we cannot elicit a response from a peer in TCPT_MAXIDLE
  89.  * amount of time probing, then we drop the connection.
  90.  */
  91.  
  92. #define    TCP_TTL        30        /* default time to live for TCP segs */
  93. /*
  94.  * Time constants.
  95.  */
  96. #define    TCPTV_MSL    ( 30*PR_SLOWHZ)        /* max seg lifetime (hah!) */
  97. #define    TCPTV_SRTTBASE    0            /* base roundtrip time;
  98.                            if 0, no idea yet */
  99. #define    TCPTV_SRTTDFLT    (  3*PR_SLOWHZ)        /* assumed RTT if no info */
  100.  
  101. #define    TCPTV_PERSMIN    (  5*PR_SLOWHZ)        /* retransmit persistance */
  102. #define    TCPTV_PERSMAX    ( 60*PR_SLOWHZ)        /* maximum persist interval */
  103.  
  104. #define    TCPTV_KEEP_INIT    ( 75*PR_SLOWHZ)        /* initial connect keep alive */
  105. #define    TCPTV_KEEP_IDLE    (120*60*PR_SLOWHZ)    /* dflt time before probing */
  106. #define    TCPTV_KEEPINTVL    ( 75*PR_SLOWHZ)        /* default probe interval */
  107. #define    TCPTV_KEEPCNT    8            /* max probes before drop */
  108.  
  109. #define    TCPTV_MIN    (  1*PR_SLOWHZ)        /* minimum allowable value */
  110. #define    TCPTV_REXMTMAX    ( 64*PR_SLOWHZ)        /* max allowable REXMT value */
  111.  
  112. #define    TCP_LINGERTIME    120            /* linger at most 2 minutes */
  113.  
  114. #define    TCP_MAXRXTSHIFT    12            /* maximum retransmits */
  115.  
  116. #ifdef    TCPTIMERS
  117. char *tcptimers[] =
  118.     { "REXMT", "PERSIST", "KEEP", "2MSL" };
  119. #endif
  120.  
  121. /*
  122.  * Force a time value to be in a certain range.
  123.  */
  124. #define    TCPT_RANGESET(tv, value, tvmin, tvmax) { \
  125.     (tv) = (value); \
  126.     if ((tv) < (tvmin)) \
  127.         (tv) = (tvmin); \
  128.     else if ((tv) > (tvmax)) \
  129.         (tv) = (tvmax); \
  130. }
  131.  
  132. #ifdef KERNEL
  133. extern int tcp_keepidle;        /* time before keepalive probes begin */
  134. extern int tcp_keepintvl;        /* time between keepalive probes */
  135. extern int tcp_maxidle;            /* time to drop after starting probes */
  136. extern int tcp_ttl;            /* time to live for TCP segs */
  137. extern int tcp_backoff[];
  138. #endif
  139.  
  140. #endif _TCP_TIMER
  141. @
  142.  
  143.  
  144. 1.1
  145. log
  146. @Initial revision
  147. @
  148. text
  149. @d15 3
  150. d112 2
  151. @
  152.